home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue67 / Threads / MainForm.dfm < prev    next >
Encoding:
Text File  |  2001-01-05  |  1.9 KB  |  99 lines

  1. object Form1: TForm1
  2.   Left = 210
  3.   Top = 186
  4.   BorderStyle = bsDialog
  5.   Caption = 'Test Test'
  6.   ClientHeight = 131
  7.   ClientWidth = 287
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poScreenCenter
  16.   OnCloseQuery = FormCloseQuery
  17.   OnCreate = FormCreate
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object LabelHiddenWord: TLabel
  21.     Left = 8
  22.     Top = 8
  23.     Width = 66
  24.     Height = 13
  25.     Caption = '&Hidden Word:'
  26.     FocusControl = edtHiddenWord
  27.   end
  28.   object LabelNoOfOpponents: TLabel
  29.     Left = 8
  30.     Top = 40
  31.     Width = 86
  32.     Height = 13
  33.     Caption = '&No Of Opponents:'
  34.     FocusControl = edtNoOfOpponents
  35.   end
  36.   object buPlay: TButton
  37.     Left = 8
  38.     Top = 64
  39.     Width = 75
  40.     Height = 25
  41.     Caption = '&Play'
  42.     TabOrder = 0
  43.     OnClick = buPlayClick
  44.   end
  45.   object edtHiddenWord: TEdit
  46.     Left = 88
  47.     Top = 8
  48.     Width = 145
  49.     Height = 21
  50.     MaxLength = 30
  51.     TabOrder = 1
  52.     Text = 'edtHiddenWord'
  53.   end
  54.   object edtNoOfOpponents: TEdit
  55.     Left = 104
  56.     Top = 32
  57.     Width = 41
  58.     Height = 21
  59.     TabOrder = 2
  60.     Text = '100'
  61.   end
  62.   object UpDownNoOfOpponents: TUpDown
  63.     Left = 145
  64.     Top = 32
  65.     Width = 15
  66.     Height = 21
  67.     Associate = edtNoOfOpponents
  68.     Min = 1
  69.     Max = 200
  70.     Position = 100
  71.     TabOrder = 3
  72.     Wrap = False
  73.   end
  74.   object buStop: TButton
  75.     Left = 96
  76.     Top = 64
  77.     Width = 75
  78.     Height = 25
  79.     Caption = '&Stop'
  80.     Enabled = False
  81.     TabOrder = 4
  82.     OnClick = buStopClick
  83.   end
  84.   object StatusBar: TStatusBar
  85.     Left = 0
  86.     Top = 109
  87.     Width = 287
  88.     Height = 22
  89.     Panels = <
  90.       item
  91.         Width = 150
  92.       end
  93.       item
  94.         Width = 50
  95.       end>
  96.     SimplePanel = True
  97.   end
  98. end
  99.